Anillo 3 - Original

An interactive fiction by Mel Hython (2009) - the Inform 7 source text

Home page

Contents
Previous
Next

Complete text
Section 1 - Facilidad para mostrar partes no interactivas

[--------------------------------------------------

La idea es bien simple -ya que hay muchas cosas
que no sé hacer-, cada entrada de una tabla/lista
simple, se muestra y tras ella se espera la
pulsación de una tecla

--------------------------------------------------]

To relatar fragmento en (tabla - a table-name), limpiando pantalla or limpiando pantalla tras cada frase:
    if limpiando pantalla
    begin;
        relatar fragmento en tabla;
        esperar pulsacion de tecla;
        simple fade out the sound of inicio to 40% over 1000 ms;
        limpiar pantalla;
    otherwise if limpiando pantalla tras cada frase;
        let N be the number of rows in tabla;
        repeat through tabla begin;
            decrease N by 1;
            say "[frase entry]";
            esperar pulsacion de tecla;
            limpiar pantalla;
        end repeat;
    otherwise;
        let N be the number of rows in tabla;
        repeat through tabla begin;
            decrease N by 1;
            say "[frase entry]";
            say paragraph break;
            if N is not 0, esperar pulsacion de tecla;
        end repeat;
    end if.